Release 10.1A: OpenEdge Data Management:
SQL Reference


ACOS

Returns the arccosine of expression.

Syntax

ACOS ( expression ) 

Example

In this example, which illustrates two ways to use the ACOS function, the first SELECT statement returns the arcosine in radians, and the second returns the arcosine in degrees:

select acos (.5) 'Arccosine in radians' from syscalctable; 
ARCCOSINE IN RADIANS 
-------------------- 
1.047197551196598 
  
1 record selected 
  
  
select acos (.5) * (180/ pi()) 'Arccosine in degrees' from syscalctable; 
  
ARCCOSINE IN DEGREES 
--------------------  
59.999999999999993 
1 record selected 

Notes

Compatibility

ODBC compatible


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095